home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C / Frameworks / Grant's CGI Framework 1.0b12 / Util / StringUtil.h < prev    next >
C/C++ Source or Header  |  1995-12-09  |  656b  |  29 lines

  1. #pragma once
  2. /*****
  3.  *
  4.  *    StringUtil.h
  5.  *
  6.  *    This is a support file for "Grant's CGI Framework".
  7.  *    Please see the license agreement that accompanies the distribution package
  8.  *    for licensing details.
  9.  *
  10.  *    Copyright ©1995 by Grant Neufeld
  11.  *    grant@acm.com
  12.  *    http://arpp1.carleton.ca/grant/
  13.  *
  14.  *****/
  15.  
  16. #include "compiler_stuff.h"
  17.  
  18.     void    StringPascalCopy    ( char *, char * );
  19.     long    StringCountChar        ( char *, char );
  20.     
  21.     /* since TPM doesn't seem to handle strchr properly... */
  22.     #if kCompiling_For_Symantec
  23.     char *    StringChar            ( const char *, unsigned char );
  24.     #else
  25.     #define StringChar(theString,theChar)    strchr((theString),(theChar))
  26.     #endif
  27.  
  28.  
  29. /* EOF */